home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / LIB51 / PUTS.C < prev    next >
Text File  |  1997-01-12  |  140b  |  9 lines

  1. /*
  2. ** Write string to standard output. 
  3. */
  4. puts(string) char *string; {
  5.   while(*string) putchar(*string++) ;
  6.   putchar('\n');
  7.   }
  8.  
  9.